博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从首页问答标题到问答详情页
阅读量:5299 次
发布时间:2019-06-14

本文共 1599 字,大约阅读时间需要 5 分钟。

    1. 主PY文件写视图函数,带id参数。
    2. @app.route('/detail/<question_id>')
      def detail(question_id):
          quest = 
          return render_template('detail.html', ques = quest)
      1 #详情页2 @app.route('/detail/
      ')3 def detail(questions_id):4 questions=Question.query.filter(Question.id==questions_id).first()5 return render_template('detail.html',questions=questions)

       

    3. 首页标题的标签做带参数的链接。
      1. {
        { url_for('detail',question_id = foo.id) }}
1 {% block main %} 2     

{

{ username }} contextx

3
15 {% endblock %}

 

    1. 在详情页将数据的显示在恰当的位置。
    2. {
      { ques.title}}
      {
      { ques.id  }}{
      {  ques.creat_time }}
      {
      { ques.author.username }} 
      {
      { ques.detail }}
1 {% extends'base.html' %} 2  3 {% block title %}问答详情{% endblock %} 4 {% block head %} 5     
6 {% endblock %} 7 8 {% block main %} 9
12

详情:{

{ questions.detail }}

13 14 {#发布评论#}15
16
17
19
20
21
22 23 {# 评论列表#}24
25

评论({
{ questions.comments|length }})

26
    27 {% endblock %}

     

     

    1.主页运行结果:

    2.详情页运行结果:

    3.数据库运行结果:

     

    转载于:https://www.cnblogs.com/iamzhuangyuan/p/7985232.html

    你可能感兴趣的文章
    Java抽象类和接口的比较
    查看>>
    开发进度一
    查看>>
    MyBaits学习
    查看>>
    管道,数据共享,进程池
    查看>>
    CSS
    查看>>
    [LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
    查看>>
    [Cypress] Stub a Post Request for Successful Form Submission with Cypress
    查看>>
    程序集的混淆及签名
    查看>>
    判断9X9数组是否是数独的java代码
    查看>>
    00-自测1. 打印沙漏
    查看>>
    UNITY在VS中调试
    查看>>
    SDUTOJ3754_黑白棋(纯模拟)
    查看>>
    Scala入门(1)Linux下Scala(2.12.1)安装
    查看>>
    如何改善下面的代码 领导说了很耗资源
    查看>>
    Quartus II 中常见Warning 原因及解决方法
    查看>>
    php中的isset和empty的用法区别
    查看>>
    Android ViewPager 动画效果
    查看>>
    pip和easy_install使用方式
    查看>>
    博弈论
    查看>>
    Redis sentinel & cluster 原理分析
    查看>>